home *** CD-ROM | disk | FTP | other *** search
/ Deutsche Edition 1 / Deutsche Edition 1.iso / amok / 081-090 / amok82 / plot / source / plotzeichnen.def < prev    next >
Text File  |  1993-11-04  |  920b  |  44 lines

  1. (***********************************************************************
  2.  
  3.    :Program.    PlotZeichnen.def
  4.    :Author.     Stefan Köhle
  5.    :Address.    Erhardtstr. 10
  6.                 W-7033 Herrenberg
  7.    :Phone.      07032/5146
  8.    :shortcut.
  9.    :Version.    1.0
  10.    :Date.       15.11.92
  11.    :Copyright.  nix
  12.    :Language.   Modula-II.
  13.    :Translator. M2Amiga 4.107d
  14.    :Imports.    PlotInit
  15.    :UpDate.
  16.    :Contents.
  17.    :Remark.
  18.  
  19. **********************************************************************)
  20.  
  21. DEFINITION MODULE PlotZeichnen;
  22.  
  23.  
  24. FROM PlotInit IMPORT PlotBasePtr ;
  25.  
  26.  
  27.  
  28. PROCEDURE RasterZeichnen(VAR Pb: PlotBasePtr) ;
  29.  
  30. PROCEDURE RestRaster(VAR Pb: PlotBasePtr) ;
  31.  
  32. PROCEDURE BeschriftungZeichnen(VAR Pb: PlotBasePtr) ;
  33.  
  34. PROCEDURE ClearBitMap(VAR Pb: PlotBasePtr) ;
  35.  
  36. PROCEDURE FunktionReinSchreiben(VAR Pb: PlotBasePtr; clear: BOOLEAN) ;
  37.  
  38. PROCEDURE HelpFenster(VAR Pb: PlotBasePtr): BOOLEAN ;
  39.  
  40.  
  41. END PlotZeichnen.def
  42.  
  43.  
  44.